/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&display=swap");

/*=============== VARIABLES ===============*/
:root {
    --light-grey: #698EAE;
    --dark-grey: #6c6c75;
    --accent-color: rgba(216,216,174,1.00); 
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    font-size: 16px;
}

box2 {
    float: left;
    width: 38%;
    padding: 5px;
    z-index: -1;
}

body {
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin-bottom: 2in;
    background: var(--light-grey);
    color: var(--dark-grey);
}

img {
    float: left;
    left: 50px;
    top: 55px;
    z-index: -1;
}

h10 {
    font-size: 1.5rem;
}

.container {
    float: inherit;
    margin-left: 40%;        
    display: flex;
    flex-direction: column;
    height: 600px;
    max-width: 550px;
    text-align: left;
}

.panel {
    position: relative;
    border-radius: 20px;
    background: var(--light-grey);
    height: 48px;
    margin: 10px;
    box-shadow: -5px -5px 15px rgba(177,150,104,1.00),
    5px 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: flex .8s linear;
    overflow: hidden;
    left: 3px;
}

p2 {
    text-transform: none;
}

ul {
    padding-left: 4px;
    text-align: justify;
    text-indent: 1em;
}

.panel.active {
    flex-grow: 6;
}

.setting-title {
    display: flex;
    margin: 12px 20px;
}

.setting-title h3 {
    margin: 0 10px;
}

.panel.active .setting-title {
    color: var(--accent-color);
}

.setting-content {
    opacity: 0;
    margin: 12px 18px;
    line-height: 28px;
    transition-duration: 1s;
    transition: opacity 0.8s ease-in .8s;
    font-feature-settings: normal;
}

.panel.active .setting-content {
    opacity: 1;
    transition: opacity 0.3s ease-in .8s;
    transition-duration: 1s;
}

.p3 {
}
